175e01d536e11fdb1be07ecd911a25a32991dc4b,src/main/java/com/contentful/java/api/CDAClient.java,CDAClient,fetchEntryWithIdentifierBlocking,#String#,297
Before Change
*/
@SuppressWarnings("unchecked")
public CDAEntry fetchEntryWithIdentifierBlocking(String identifier) throws Exception {
if (ensureSpaceBlocking(false)) {
return service.fetchEntryWithIdentifierBlocking(spaceKey, identifier);
}
return null; // todo throw exception and pass to custom error handler if there is one
}
/**
After Change
*/
@SuppressWarnings("unchecked")
public CDAEntry fetchEntryWithIdentifierBlocking(String identifier) throws Exception {
ensureSpaceBlocking(false);
return service.fetchEntryWithIdentifierBlocking(spaceKey, identifier);
}